home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat2 / fork.0 < prev    next >
Text File  |  1996-09-01  |  3KB  |  63 lines

  1.  
  2. FORK(2)                    UNIX Programmer's Manual                    FORK(2)
  3.  
  4. NNAAMMEE
  5.      ffoorrkk - create a new process
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssyyss//ttyyppeess..hh>>
  9.      ##iinncclluuddee <<uunniissttdd..hh>>
  10.  
  11.      _p_i_d___t
  12.      ffoorrkk(_v_o_i_d)
  13.  
  14. DDEESSCCRRIIPPTTIIOONN
  15.      FFoorrkk() causes creation of a new process.  The new process (child process)
  16.      is an exact copy of the calling process (parent process) except for the
  17.      following:
  18.  
  19.            ++oo   The child process has a unique process ID.
  20.  
  21.            ++oo   The child process has a different parent process ID (i.e., the
  22.                process ID of the parent process).
  23.  
  24.            ++oo   The child process has its own copy of the parent's descriptors.
  25.                These descriptors reference the same underlying objects, so
  26.                that, for instance, file pointers in file objects are shared
  27.                between the child and the parent, so that an lseek(2) on a de-
  28.                scriptor in the child process can affect a subsequent read or
  29.                write by the parent.  This descriptor copying is also used by
  30.                the shell to establish standard input and output for newly cre-
  31.                ated processes as well as to set up pipes.
  32.  
  33.            ++oo   The child processes resource utilizations are set to 0; see
  34.                setrlimit(2).
  35.  
  36. RREETTUURRNN VVAALLUUEESS
  37.      Upon successful completion, ffoorrkk() returns a value of 0 to the child pro-
  38.      cess and returns the process ID of the child process to the parent pro-
  39.      cess.  Otherwise, a value of -1 is returned to the parent process, no
  40.      child process is created, and the global variable _e_r_r_n_o is set to indi-
  41.      cate the error.
  42.  
  43. EERRRROORRSS
  44.      FFoorrkk() will fail and no child process will be created if:
  45.  
  46.      [EAGAIN]      The system-imposed limit on the total number of processes
  47.                    under execution would be exceeded.  This limit is configu-
  48.                    ration-dependent.
  49.  
  50.      [EAGAIN]      The system-imposed limit MAXUPRC (<_s_y_s_/_p_a_r_a_m_._h>) on the to-
  51.                    tal number of processes under execution by a single user
  52.                    would be exceeded.
  53.  
  54.      [ENOMEM]      There is insufficient swap space for the new process.
  55.  
  56. SSEEEE AALLSSOO
  57.      execve(2),  wait(2)
  58.  
  59. HHIISSTTOORRYY
  60.      A ffoorrkk(_2) function call appeared in Version 6 AT&T UNIX.
  61.  
  62. 4th Berkeley Distribution        June 4, 1993                                1
  63.